1898daecf9d8ac9b704d5261a6db7e2c8544c7e1,src/main/java/biweekly/util/com/google/ical/iter/Generators.java,Generators,byHourGenerator,#number[]#DateValue#,409
Before Change
*/
static Generator byHourGenerator(int[] hours, final DateValue dtStart) {
final TimeValue dtStartTime = TimeUtils.timeOf(dtStart);
hours = Util.uniquify(hours);
if (hours.length == 0) {
hours = new int[] { dtStartTime.hour() };
}
final int[] uhours = hours;
if (uhours.length == 1) {
final int hour = uhours[0];
After Change
*/
static Generator byHourGenerator(int[] hours, final DateValue dtStart) {
final TimeValue dtStartTime = TimeUtils.timeOf(dtStart);
final int[] uhours = (hours.length == 0) ? new int[] { dtStartTime.hour() } : Util.uniquify(hours);
if (uhours.length == 1) {
final int hour = uhours[0];